home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
BORL_TIP
/
TI100
/
TI177.ASC
< prev
next >
Wrap
Text File
|
1991-09-11
|
1KB
|
67 lines
PRODUCT : TURBO GAMEWORKS NUMBER
: 177
VERSION : 1.00A
OS : PC-DOS
DATE : May 21, 1986 PAGE : 1/1
TITLE : ROW AND COLUMN COORDINATE UPDATTE
The following patch causes Turbo Gameworks to properly reset the
column and row coordinates at the start of a new game. This
problem occurs after the board has been Turned and a New game
started by typing N.
Note: After installing this patch make sure that you update the
version number of TURBO CHESS to 1.00B. Be sure to indicate that
you have updated the program in any correspondence you may have
with the Technical Support Department.
In the procedure ResetGame in the file TALK.CH:
Change from:
Turned := false; { Print Screen picture }
SetUpScreen(FirstCall);
PrintBoard;
end; { ResetGame }
Change to:
Turned := false; { Print Screen picture }
SetBorder; { addition ver. 1.00B }
SetUpScreen(FirstCall);
PrintBoard;
end; { ResetGame }